home *** CD-ROM | disk | FTP | other *** search
/ VRML 2.0 Sourcebook (2nd Edition) / VRML 2.0 Sourcebook CD [md5 fed90f4f9c39d5a60d477058775c7e21].iso / book / unix / ch05 / 05fig08.wrl < prev    next >
Text File  |  1996-09-22  |  518b  |  33 lines

  1. #VRML V2.0 utf8
  2. # The VRML 2.0 Sourcebook
  3. # Copyright [1997] By
  4. # Andrea L. Ames, David R. Nadeau, and John L. Moreland
  5. # A gray hut
  6. Group {
  7.     children [
  8.     # Draw the hut walls
  9.         Shape {
  10.             appearance DEF White Appearance {
  11.                 material Material { }
  12.             }
  13.             geometry Cylinder {
  14.                 height 2.0
  15.                 radius 2.0
  16.             }
  17.         },
  18.     # Draw the hut roof
  19.         Transform {
  20.             translation 0.0 2.0 0.0
  21.             children [
  22.                 Shape {
  23.                     appearance USE White
  24.                     geometry Cone {
  25.                         height 2.0
  26.                         bottomRadius 2.5
  27.                     }
  28.                 }
  29.             ]
  30.         }
  31.     ]
  32. }
  33.